google.golang.org/grpc.dialOptions.copts (field)
55 uses
google.golang.org/grpc (current package)
balancer_wrapper.go#L89: DialCreds: cc.dopts.copts.TransportCredentials,
balancer_wrapper.go#L90: CredsBundle: cc.dopts.copts.CredsBundle,
balancer_wrapper.go#L91: Dialer: cc.dopts.copts.Dialer,
balancer_wrapper.go#L93: CustomUserAgent: cc.dopts.copts.UserAgent,
clientconn.go#L238: cc.keepaliveParams = cc.dopts.copts.KeepaliveParams
clientconn.go#L253: cc.metricsRecorderList = istats.NewMetricsRecorderList(cc.dopts.copts.StatsHandlers)
clientconn.go#L254: cc.statsHandler = istats.NewCombinedHandler(cc.dopts.copts.StatsHandlers...)
clientconn.go#L342: } else if cc.dopts.copts.FailOnNonTempDialError && s == connectivity.TransientFailure {
clientconn.go#L483: if cc.dopts.copts.TransportCredentials == nil && cc.dopts.copts.CredsBundle == nil {
clientconn.go#L486: if cc.dopts.copts.TransportCredentials != nil && cc.dopts.copts.CredsBundle != nil {
clientconn.go#L489: if cc.dopts.copts.CredsBundle != nil && cc.dopts.copts.CredsBundle.TransportCredentials() == nil {
clientconn.go#L492: transportCreds := cc.dopts.copts.TransportCredentials
clientconn.go#L494: transportCreds = cc.dopts.copts.CredsBundle.TransportCredentials()
clientconn.go#L497: for _, cd := range cc.dopts.copts.PerRPCCredentials {
clientconn.go#L1314: v := 2 * ac.dopts.copts.KeepaliveParams.Time
clientconn.go#L1462: ac.dopts.copts.KeepaliveParams = ac.cc.keepaliveParams
clientconn.go#L1465: copts := ac.dopts.copts
clientconn.go#L1968: if creds := dopts.copts.TransportCredentials; creds != nil && creds.Info().ServerName != "" {
dialoptions.go#L84: copts transport.ConnectOptions
dialoptions.go#L180: o.copts.SharedWriteBuffer = val
dialoptions.go#L192: o.copts.WriteBufferSize = s
dialoptions.go#L204: o.copts.ReadBufferSize = s
dialoptions.go#L213: o.copts.InitialWindowSize = s
dialoptions.go#L214: o.copts.StaticWindowSize = true
dialoptions.go#L223: o.copts.InitialConnWindowSize = s
dialoptions.go#L224: o.copts.StaticWindowSize = true
dialoptions.go#L240: o.copts.InitialWindowSize = s
dialoptions.go#L241: o.copts.StaticWindowSize = true
dialoptions.go#L258: o.copts.InitialConnWindowSize = s
dialoptions.go#L259: o.copts.StaticWindowSize = true
dialoptions.go#L404: o.copts.TransportCredentials = insecure.NewCredentials()
dialoptions.go#L441: o.copts.TransportCredentials = creds
dialoptions.go#L449: o.copts.PerRPCCredentials = append(o.copts.PerRPCCredentials, creds)
dialoptions.go#L463: o.copts.CredsBundle = b
dialoptions.go#L500: o.copts.Dialer = f
dialoptions.go#L531: o.copts.StatsHandlers = append(o.copts.StatsHandlers, h)
dialoptions.go#L559: o.copts.FailOnNonTempDialError = f
dialoptions.go#L567: o.copts.UserAgent = s + " " + grpcUA
dialoptions.go#L581: o.copts.KeepaliveParams = kp
dialoptions.go#L695: do.copts.MaxHeaderListSize = &o.MaxHeaderListSize
dialoptions.go#L721: copts: transport.ConnectOptions{
dialoptions.go#L810: o.copts.BufferPool = bufferPool
resolver_wrapper.go#L77: DialCreds: ccr.cc.dopts.copts.TransportCredentials,
resolver_wrapper.go#L78: CredsBundle: ccr.cc.dopts.copts.CredsBundle,
resolver_wrapper.go#L79: Dialer: ccr.cc.dopts.copts.Dialer,
resolver_wrapper.go#L89: if ccr.cc.dopts.copts.Dialer != nil || !ccr.cc.dopts.useProxy {
stream.go#L569: a.parser = parser{r: s, bufferPool: a.cs.cc.dopts.copts.BufferPool}
stream.go#L958: hdr, data, payload, pf, err := prepareMsg(m, cs.codec, cs.compressorV0, cs.compressorV1, cs.cc.dopts.copts.BufferPool)
stream.go#L1365: as.parser = parser{r: s, bufferPool: ac.dopts.copts.BufferPool}
stream.go#L1465: hdr, data, payload, pf, err := prepareMsg(m, as.codec, as.sendCompressorV0, as.sendCompressorV1, as.ac.dopts.copts.BufferPool)